home *** CD-ROM | disk | FTP | other *** search
/ C & C++ Multimedia Cyber Classroom / C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso / src / fig03_21.jar / Ch03 / Fig03_21 / Fig03_21.cpp
C/C++ Source or Header  |  1997-10-11  |  298b  |  15 lines

  1. // Fig. 3.21: fig03_21.cpp
  2. // References must be initialized
  3. #include <iostream.h>
  4.  
  5. int main()
  6. {
  7.    int x = 3, &y = x;  // y is now an alias for x
  8.  
  9.    cout << "x = " << x << endl << "y = " << y << endl;
  10.    y = 7;
  11.    cout << "x = " << x << endl << "y = " << y << endl;
  12.  
  13.    return 0;
  14. }
  15.